Expand description
Mutex and RwLock types that do not poison themselves.
These types expose identical APIs to the standard library Mutex
and
RwLock
except that they do not return PoisonError
s.
Structs§
- Like
std::sync::Condvar
. - Like
std::sync::Mutex
except that it does not poison itself. - Like
std::sync::MutexGuard
. - Like
std::sync::RwLock
except that it does not poison itself. - Like
std::sync::RwLockReadGuard
. - Like
std::sync::RwLockWriteGuard
. - Like
std::sync::TryLockError
. - A type indicating whether a timed wait on a condition variable returned due to a time out or not.
Type Aliases§
- Like
std::sync::TryLockResult
.